home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / libs / winlib-0.0 / winlib-0 / win / sound / Makefile < prev   
Encoding:
Makefile  |  1995-12-25  |  389 b   |  22 lines

  1. # Makefile for Generic Sound Server
  2. # by Ken Hollis
  3.  
  4. CC= gcc
  5. CFLAGS= -O6 -Wall -m486 -I..
  6. LINK_FLAGS= main.o
  7.  
  8. sound_server:    $(LINK_FLAGS)
  9.         $(CC) -o $@ $^
  10.         strip sound_server
  11.  
  12. clean:
  13.         rm -f *.o sound_server
  14.  
  15. install:    sound_server
  16.         @echo
  17.         @echo Installing the sound server, one moment.
  18.         @echo
  19.         @cp sound_server /bin
  20.         @chown root.root /bin/sound_server
  21.         @chmod 755 /bin/sound_server
  22.